javascript get domain

59

how to extract domain name of url of current page in javascript -

var url = window.location.href;
var domain = url.replace('http://','').replace('https://','').split(/[/?#]/)[0];

javascript get domain name from string -

const url = 'https://www.mydomain.com/blog?search=hello&world';
const domain = (new URL(url)).hostname.replace('www.','');

javascript get domain -

window.location.hostname

extract domain from url js -

const url = 'http://www.youtube.com/watch?v=ClkQA2Lb_iE';
const { hostname } = new URL(url);

console.assert(hostname === 'www.youtube.com'); // true

Comments

Submit
0 Comments